home *** CD-ROM | disk | FTP | other *** search
/ Merciful 2 / Merciful - Disc 2.iso / software / i / imagefxv2.1a.lha / ImageFX / Rexx / AutoFX / Contrast.ifx.pre < prev    next >
Text File  |  1996-03-02  |  365b  |  20 lines

  1. /*
  2.  *    Contrast.ifx.pre
  3.  *    Saves the settings into the
  4.  *    ImpContrastParameters clip variable.
  5.  *
  6.  *    by Steve Tibbett
  7.  */
  8.  
  9. Options Results
  10.  
  11. Defaults=GetClip("ImpContrastParameters"arg(1));
  12. if (Defaults="") then Defaults="127"
  13.  
  14. RequestSlider '"Contrast"' 0 255 Defaults
  15. if RC~=0 then return 10
  16.  
  17. Defaults=Result
  18. call SetClip("ImpContrastParameters"arg(1), Defaults);
  19.  
  20.